home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Custom 2 FineLeather preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_FineLeather():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Angle': 46,
- 'FurrowCount': 25,
- 'Transparency': 225,
- 'Blur': 37,
- 'Color': (89, 89, 89),
- 'FurrowLength': 9,
- }
-
- def Do(Environment):
- App.Do(Environment, 'FineLeather', Preset_FineLeather())
-